home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 1997 May
/
PC Plus Super CD Issue 127 (May 1997).iso
/
handson
/
java
/
classes
/
treasure.class
(
.txt
)
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1997-02-07
|
593 b
|
13 lines
class Treasure extends Thing {
private int value;
Treasure(String aName, String aDescription, int aValue) {
super(aName, aDescription);
this.value = aValue;
}
int getValue() {
return this.value;
}
}